home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / networking / amitcp / amislate1.0.lha / AmiSlate1.0 / ExampleRexx / remote.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-03-13  |  378 b   |  12 lines

  1. /* A program demonstrating how to use RemoteEasyRequest to ask a 
  2.    question of the Remote AmiSlate user. */
  3. parse arg CommandPort ActiveString
  4.  
  5. address (CommandPort)
  6. options results
  7.  
  8. RemoteEasyRequest '"'||"Remote Request"||'"' '"'||"Please Pick a number"||'"' '1|2|3|4|5|0'
  9. waitevent stem l.  message
  10. EasyRequest Answer '"'||"The remote user picked: "|| l.message||'"' Okay
  11.  
  12.